From db1f1a8638ef84f49de7471f6ad3a83914dca98c Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 18 Feb 2025 12:07:58 +0800 Subject: [PATCH] gui/wizard: Add orientation message for macOS VFS users using virtual files Signed-off-by: Claudio Cambra --- src/gui/owncloudsetupwizard.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/gui/owncloudsetupwizard.cpp b/src/gui/owncloudsetupwizard.cpp index d3ed5688c..633d8f6b7 100644 --- a/src/gui/owncloudsetupwizard.cpp +++ b/src/gui/owncloudsetupwizard.cpp @@ -696,6 +696,14 @@ void OwncloudSetupWizard::slotAssistantFinished(int result) tr("File Provider-based account %1 successfully created!").arg(account->account()->userIdAtHostWithPort())); _ocWizard->done(result); emit ownCloudWizardDone(result); + + QMessageBox::information(nullptr, + tr("Virtual files enabled"), + tr("Your account is now syncing with virtual files support. " + "This means that all your files are online-only by default, " + "and will be downloaded on-demand when you open them. " + "You may find your files under the Locations section of the Finder sidebar.")); + return; } #endif -- 2.30.2